install python on ubuntu

41

install python on ubuntu -

sudo apt install python3.8

install python ubuntu -

python -m pip show scikit-learn  # to see which version and where scikit-learn is installedpython -m pip freeze  # to see all packages installed in the active virtualenvpython -c "import sklearn; sklearn.show_versions()"

Comments

Submit
0 Comments